home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiDotNet / WinFormProjectTemplate.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  2.8 KB  |  77 lines

  1. program [!ProgramName];
  2.  
  3. uses
  4.   System.Reflection, 
  5.   System.Runtime.CompilerServices,
  6.   System.Windows.Forms;
  7.  
  8. {$R *.res}
  9.  
  10. {$REGION 'Program/Assembly Information'}
  11. //
  12. // General Information about an assembly is controlled through the following
  13. // set of attributes. Change these attribute values to modify the information
  14. // associated with an assembly.
  15. //
  16. [assembly: AssemblyDescription('')]
  17. [assembly: AssemblyConfiguration('')]
  18. [assembly: AssemblyCompany('')]
  19. [assembly: AssemblyProduct('')]
  20. [assembly: AssemblyCopyright('')]
  21. [assembly: AssemblyTrademark('')]
  22. [assembly: AssemblyCulture('')]
  23.  
  24. // The Delphi compiler controls the AssemblyTitleAttribute via the ExeDescription.
  25. // You can set this in the IDE via the Project Options.
  26. // Manually setting the AssemblyTitle attribute below will override the IDE
  27. // setting.
  28. // [assembly: AssemblyTitle('')]
  29.  
  30.  
  31. //
  32. // Version information for an assembly consists of the following four values:
  33. //
  34. //      Major Version
  35. //      Minor Version 
  36. //      Build Number
  37. //      Revision
  38. //
  39. // You can specify all the values or you can default the Revision and Build Numbers 
  40. // by using the '*' as shown below:
  41.  
  42. [assembly: AssemblyVersion('1.0.*')]
  43.  
  44. //
  45. // In order to sign your assembly you must specify a key to use. Refer to the 
  46. // Microsoft .NET Framework documentation for more information on assembly signing.
  47. //
  48. // Use the attributes below to control which key is used for signing. 
  49. //
  50. // Notes: 
  51. //   (*) If no key is specified, the assembly is not signed.
  52. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  53. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  54. //       a key.
  55. //   (*) If the KeyFile and the KeyName values are both specified, the 
  56. //       following processing occurs:
  57. //       (1) If the KeyName can be found in the CSP, that key is used.
  58. //       (2) If the KeyName does not exist and the KeyFile does exist, the key 
  59. //           in the KeyFile is installed into the CSP and used.
  60. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  61. //       When specifying the KeyFile, the location of the KeyFile should be
  62. //       relative to the project output directory. For example, if your KeyFile is
  63. //       located in the project directory, you would specify the AssemblyKeyFile 
  64. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  65. //       directory is the project directory (the default).
  66. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  67. //       documentation for more information on this.
  68. //
  69. [assembly: AssemblyDelaySign(false)]
  70. [assembly: AssemblyKeyFile('')]
  71. [assembly: AssemblyKeyName('')]
  72. {$ENDREGION}
  73.  
  74. [STAThread]
  75. begin
  76.   Application.Run(T[!MainFormName].Create);
  77. end.